home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / BOOT._ / boot
Encoding:
Text File  |  2003-02-21  |  2.9 KB  |  97 lines

  1. ;
  2. ;   DNS boot file
  3. ;
  4. ;   NOTE:   It is NOT necessary to use a boot file to run the DNS server.
  5. ;
  6. ;   The Microsoft DNS server is capable of reading configuration, zone
  7. ;   and cache information from a "boot" file or from the registry.
  8. ;
  9. ;   To take full advantage of the capabilities of the Microsoft DNS
  10. ;   Server service we suggest using the DNS console. If you are new to 
  11. ;   DNS or are setting up a new installation, then we strongly recommend
  12. ;   using the DNS console, in which case you need not set up a boot file.
  13. ;
  14. ;   However, if you are porting an existing BIND DNS installation, then
  15. ;   the DNS server will be able to read your existing boot file.  Note,
  16. ;   that the file MUST be named "boot".
  17. ;
  18.  
  19. ;
  20. ;   Boot file syntax:
  21. ;
  22. ;   Directives in this file instruct the DNS service when it is starting.
  23. ;   Anything on a line followin a semicolon ';' is a comment, and is ignored.
  24. ;
  25. ;   This file and all files listed in this file must be in
  26. ;   %SystemRoot%\system32\dns directory.
  27. ;
  28.  
  29. ;
  30. ;   CACHE FILE
  31. ;
  32. ;   The "cache" file is not really cache information.  Rather it contains
  33. ;   name server and IP address information necessary to contact the ROOT
  34. ;   domain name servers.
  35. ;
  36. ;   The syntax of this command is:
  37. ;
  38. ;       cache   .       <filename>
  39. ;
  40. ;   YOU SHOULD CHANGE:
  41. ;
  42. ;   =>  Nothing - do NOT change this line, if you are NOT a root domain
  43. ;       server.
  44. ;       (Note:  if you are not connected to the Internet, be sure and edit
  45. ;       the cache file to point at the root servers for your intranet.)
  46. ;
  47. ;       OR
  48. ;
  49. ;   =>  Comment out this line, if this DNS server is the ROOT domain
  50. ;       server for a private intranet.
  51. ;
  52.  
  53. cache   .   cache.dns
  54.  
  55.  
  56. ;
  57. ;   PRIMARY DOMAINS
  58. ;
  59. ;   "Primary" domains are listed below.  The second column is the name of the
  60. ;   domain for which this name server is authoritative.  The third column is
  61. ;   the name if the database file which contains the authoritative data.
  62. ;
  63. ;   The syntax of this command is:
  64. ;
  65. ;       primary <domain> <filename>
  66. ;
  67. ;   YOU SHOULD CHANGE:
  68. ;       - The names of the domains.
  69. ;       - The names of the database files.
  70. ;       - Comment out domains for which server will be secondary.
  71. ;
  72.  
  73. ;primary   place.dom                 place.dns
  74. ;primary   29.5.192.in-addr.arpa     192.dns
  75.  
  76.  
  77.  
  78. ;
  79. ;   SECONDARY DOMAINS
  80. ;
  81. ;   "Secondary" domains are listed below.
  82. ;
  83. ;   The syntax of this command is:
  84. ;
  85. ;       secondary <domain> <master DNS ip address> <filename>
  86. ;
  87. ;   YOU SHOULD CHANGE:
  88. ;       - The names of the domains.
  89. ;       - The names of the database files.
  90. ;       - The IP address of the primary DNS server (192.255.255.7).
  91. ;       - Uncomment domains for which server will be secondary, then
  92. ;         comment out the primary statement for that domain above.
  93. ;
  94.  
  95. ;secondary   place.dom                  192.5.29.7   place.dns
  96. ;secondary   29.5.192.in-addr.arpa      192.5.29.7   192.dns
  97.